home *** CD-ROM | disk | FTP | other *** search
- VERSION 4.00
- Begin VB.Form Child1
- Caption = "Child"
- ClientHeight = 2580
- ClientLeft = 1515
- ClientTop = 4680
- ClientWidth = 4710
- Height = 2985
- Left = 1455
- LinkTopic = "Form1"
- MDIChild = -1 'True
- ScaleHeight = 2580
- ScaleWidth = 4710
- Top = 4335
- Visible = 0 'False
- Width = 4830
- Begin VB.Timer Timer1
- Interval = 5000
- Left = 3720
- Top = 1320
- End
- Begin VB.ListBox List1
- Height = 2400
- IntegralHeight = 0 'False
- Left = 0
- TabIndex = 0
- Top = 0
- Width = 3255
- End
- Begin MENUXLib.MenuX MenuX1
- Left = 3480
- Top = 120
- _Version = 65536
- _ExtentX = 1720
- _ExtentY = 1296
- _StockProps = 0
- MDIChild = -1 'True
- End
- Attribute VB_Name = "Child1"
- Attribute VB_Creatable = False
- Attribute VB_Exposed = False
- Dim anz%
- Private Sub Form_Load()
- anz% = 0
- Caption = "Child " + Time$
- MenuX1.hWnd = Me.hWnd
- End Sub
- Private Sub Form_Resize()
- If Me.WindowState = 1 Then Exit Sub
- List1.Width = Me.ScaleWidth
- List1.Height = Me.ScaleHeight
- End Sub
- Private Sub MenuX1_Click(ByVal id As Integer)
- List1.AddItem "Click" + Str$(id)
- List1.TopIndex = List1.ListCount - 1
- End Sub
- Private Sub MenuX1_Help(ByVal id As Integer)
- List1.AddItem "Help" + Str$(id)
- List1.TopIndex = List1.ListCount - 1
- End Sub
- Private Sub MenuX1_Select(ByVal id As Integer)
- List1.AddItem "Select" + Str$(id)
- List1.TopIndex = List1.ListCount - 1
- End Sub
- Private Sub Timer1_Timer()
- anz% = anz% + 1
- Caption = "Child " + Time$ + "," + Str$(anz%) + ". Aktualisierung"
- End Sub
-